home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 May / PCPlus May 1998=disk A.iso / full / CBUILDER / SAMS / SAMPLES / CHAP06 / PVABOUT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-12  |  947 b   |  29 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef PVAboutH
  3. #define PVAboutH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. #include <vcl\Buttons.hpp>
  11. //---------------------------------------------------------------------------
  12. class TAboutBox : public TForm
  13. {
  14. __published:    // IDE-managed Components 
  15.   TBevel *Bevel1;
  16.   TBitBtn *BitBtn1;
  17.   TLabel *Label1;
  18.   TLabel *Label2;
  19.   TLabel *Label3;
  20.   TImage *Image1;
  21. private:    // User declarations
  22. public:        // User declarations
  23.   virtual __fastcall TAboutBox(TComponent* Owner);
  24. };
  25. //---------------------------------------------------------------------------
  26. extern TAboutBox *AboutBox;
  27. //---------------------------------------------------------------------------
  28. #endif
  29.